Loading Jupyter Kernel on VS Code

Updated: 10-02-2022

Note

Not all images contain VS Code. Currently the only stack that contains VS Code is the stack for Dr. Becerra’s class. Contact Youngsu Kim if your image needs VS Code.

We will use the Python + Jupyter extension.

  1. Click on the VS-Code icon

    Alternative text
  2. Currently, no kernel is selected.

    Alternative text
  3. When clinking on Select Kernel, you will be promoted to the command palette with Python + Jupyter as suggested extension. Hit return (or click on) to follow the suggestion.

    Alternative text
  4. Wait for the extension to be installed.

    Alternative text
  5. When done, the Select Kernel icon will be replaced by the kernel selected. If not, you can click on Select Kernel to choose one.

    Alternative text
  6. If you want to check the version in Python, run the following code.

    Python Version Check
    from platform import python_version
    
    print(python_version)
    
    Alternative text